home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / a-astaco.ads next >
Text File  |  1996-01-30  |  2KB  |  31 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --        A D A . A S Y N C H R O N O U S _ T A S K _ C O N T R O L         --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.4 $                              --
  10. --                                                                          --
  11. -- This specification is adapted from the Ada Reference Manual for use with --
  12. -- GNAT.  In accordance with the copyright of that document, you can freely --
  13. -- copy and modify this specification,  provided that if you redistribute a --
  14. -- modified version,  any changes that you have made are clearly indicated. --
  15. --                                                                          --
  16. ------------------------------------------------------------------------------
  17.  
  18. with Ada.Task_Identification;
  19.  
  20. package Ada.Asynchronous_Task_Control is
  21.  
  22.    pragma Unimplemented_Unit;
  23.  
  24.    procedure Hold (T : Ada.Task_Identification.Task_Id);
  25.  
  26.    procedure Continue (T : Ada.Task_Identification.Task_Id);
  27.  
  28.    function Is_Held (T : Ada.Task_Identification.Task_Id) return Boolean;
  29.  
  30. end Ada.Asynchronous_Task_Control;
  31.